home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 287_02 / tc_user.upd < prev    next >
Text File  |  1989-05-23  |  1KB  |  40 lines

  1.      The GRAD User's manual is written for Microsoft C V4.0 (MSC for short) 
  2. users. If you are using Turbo C (TC for short) by Borland, you have to read 
  3. this file. It will describe the difference in using the GRAD library.
  4.  
  5. Chapter 1
  6.      The speed of GRAD functions for MSC and TC is basically the same because 
  7. most of the low level drawing function is performed by assembly routines. But 
  8. in ellipse drawing, MSC is about 10% faster than TC.
  9.  
  10. Chapter 2.1 (p.4 near the bottom)
  11.      The command for compiling the program onedot.c should change to
  12.  
  13.         tcc onedot.c gradlib.lib
  14.  
  15. and include -I and -L option if necessary.
  16.  
  17. Chapter 2.1 (p.5 bottom)
  18.      The make file should change to:
  19.  
  20.         OPTIMIZE=-O -r -Z
  21.         OPTION=-ms -a -f- -K -c $(OPTIMIZE) 
  22.  
  23.         .asm.obj:
  24.                 masm /ML $*;
  25.  
  26.         .c.obj:
  27.                 cc $(OPTION) $*.c
  28.  
  29.         onedot.obj:     onedot.c
  30.  
  31.         onedot.exe:     onedot.obj
  32.                 tlink /c /d c0s onedot,onedot,nul,gradlib cs
  33.  
  34. APPENDIX B
  35.      If you need to change the screen memory address (_SCREEN), you have to 
  36. change the address defined in both calcaddr.asm and ftable.c. You cannot change 
  37. the address of the ROM character pattern by changing the value in calcaddr.asm 
  38. when using TC. You need the source listings to do the change when using TC.
  39.  
  40.